/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  11
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       dictionary;
    location    "constant";
    object      fvModels;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

porosity
{	
    type            explicitPorositySource;

    explicitPorositySourceCoeffs
    {
        selectionMode cellZone;
	
	cellZone        porousBlockage;

        type            DarcyForchheimer;

        D 1e5;

        d   ($D $D $D);
        f   (0 0 0);

        coordinateSystem
	{
		type    cartesian;
    		origin  (0 0 0);
    		rotation
    		{
        		type    axes;
        		e1  (1 0 0);
        		e2  (0 1 0);
    		}
	}
    }
}


// ************************************************************************* //
